home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
COMPILER
/
VP10B003
/
VPC
/
SOURCE
/
RTL
/
USE32.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-06-21
|
380b
|
24 lines
unit Use32;
interface
type
SmallInt = System.Integer;
SmallWord = System.Word;
{$IFDEF USE32}
Integer = System.Longint;
Word = System.Longint;
const
MaxInt = MaxLongint;
{$ENDIF}
type
PByte = ^Byte;
PWord = ^Word;
PLongint = ^Longint;
PSmallInt = ^SmallInt;
PSmallWord = ^SmallWord;
implementation
end.